OpenStack Juno : Configure Glance
2015/06/05 |
Install and Configure OpenStack Image Service (Glance).
|
|
[1] | Install Glance. |
[root@dlp ~]# dnf -y install openstack-glance
|
[2] | Add a User and Database on MariaDB for Glance. |
[root@dlp ~]# mysql -u root -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 7 Server version: 10.0.19-MariaDB MariaDB Server Copyright (c) 2000, 2015, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>
create database glance; Query OK, 1 row affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on glance.* to glance@'localhost' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
grant all privileges on glance.* to glance@'%' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
MariaDB [(none)]>
MariaDB [(none)]> flush privileges; Query OK, 0 rows affected (0.00 sec) exit Bye |
[3] | Configure Glance. |
[root@dlp ~]#
vi /etc/glance/glance-registry.conf # line 143: uncomment and change the info ( the one for MariaDB ) connection= mysql://glance:password@localhost/glance
# line 224: change like follows ( the one added in Keystone ) [keystone_authtoken] identity_uri=http:// 10.0.0.30:35357 admin_tenant_name= service admin_user= glance admin_password= servicepassword
# line 238: add
flavor=keystone
[root@dlp ~]#
vi /etc/glance/glance-api.conf # line 223: change ( RabbitMQ User and Password ) rabbit_userid= guest rabbit_password= password
# line 303: uncomment and change the info ( the one for MariaDB ) connection= mysql://glance:password@localhost/glance
# line 384: change like follows ( the one added in Keystone ) [keystone_authtoken] identity_uri=http:// 10.0.0.30:35357 admin_tenant_name= service admin_user= glance admin_password= servicepassword revocation_cache_time=10 # line 399: add
flavor=keystone
glance-manage db_sync [root@dlp ~]# systemctl start openstack-glance-api openstack-glance-registry [root@dlp ~]# systemctl enable openstack-glance-api openstack-glance-registry |